From: Daniel Carl <danielcarl@gmx.de>
Date: Sun, 2 Jun 2013 16:58:26 +0000 (+0200)
Subject: Fixed wrong sorting of url history entries (#31).
X-Git-Url: https://git.owens.tech/assets/lich_lifts_title_slice.png%20%22Lich%20Lifts%22/assets/lich_lifts_title_slice.png%20%22Lich%20Lifts%22/git?a=commitdiff_plain;h=8865b2e58f1623b6271ee51a72ab9439162adf99;p=vimb.git

Fixed wrong sorting of url history entries (#31).

In opposition to the function comment the history list contained the latest
entries first.
---

diff --git a/src/history.c b/src/history.c
index 176c516..21f2a65 100644
--- a/src/history.c
+++ b/src/history.c
@@ -250,6 +250,8 @@ static GList *load(const char *file)
         }
     }
 
+    list = g_list_reverse(list);
+
     return list;
 }